* configure.in: When looking for source in the same directory as
authorJim Blandy <jimb@redhat.com>
Tue, 25 May 1993 14:15:30 +0000 (14:15 +0000)
committerJim Blandy <jimb@redhat.com>
Tue, 25 May 1993 14:15:30 +0000 (14:15 +0000)
the configure script, make the path thus discovered absolute.
If the user specifies the `--srcdir' switch, make that directory
absolute too.

configure1.in

index df41927674b9dfba0aebc0c1a4f500ac8b1c8286..1238db91d6db17f3002e0508b6091709000ab15e 100755 (executable)
@@ -286,7 +286,7 @@ case "${srcdir}" in
   "" )
     confdir=`echo $0 | sed 's|//|/|' | sed 's|/[^/]*$||'`
     if [ -f $confdir/src/lisp.h -a -f $confdir/lisp/version.el ]; then
-      srcdir=$confdir
+      srcdir=`(cd $confdir ; pwd)`
     else
       if [ -f "./src/lisp.h" -a -f "./lisp/version.el" ]; then
         srcdir=`pwd`
@@ -309,6 +309,7 @@ sources may be found."
 
   ## Otherwise, check if the directory they specified is okay.
   * )
+    srcdir=`(cd ${srcdir}; pwd)`
     if [ ! -d "${srcdir}" -o ! -f "${srcdir}/src/lisp.h" -o ! -f "${srcdir}/lisp/version.el" ]; then
       (echo "\
 ${progname}: The directory specified with the \`--srcdir' option,